home *** CD-ROM | disk | FTP | other *** search
- 37
-
- 37/50: Dream10c.Mod Allows users to send SSM's (Locally and Net)
- [ Name ] ``Unca Scrooge`` WWIVnet #1 AT 8398
- [ Date ] Tuesday, November 02, 1993 03:02 PM [EST]
- [ From ] WWiVLink - The Land of OZ (Mo) [314-921-5195]
-
- ────────────────────────────────────────────────────────────────────────────
-
- ┌────────────────────────────────────────────────────────────────────────────┐
- │ Mod Name: Dream10c.Mod Date: November 2, 1993 1@8398 WWIVnet │
- │ Difficulty: ▒▒▒▒▒▒▒▒▒▒▒ Mod Authors: Unca Scrooge ICEnet │
- │ WWIV Version: 4.22 DreadNet │
- │ Files Affected: BBS.C, MISCCMD.C, FCNS.H 1@8351 ImagiNet │
- │ Description: Allows users to send SSM's to other users, and over the net │
- │ if connected. Also, notifies the Sysop of who sent it, to │
- │ whom it was sent, and what it said. │
- └────────────────────────────────────────────────────────────────────────────┘
-
- Long Desc. Papa Bear released this mod back in Feb (I think). Anyhoo,
- the bulk of the code is his, I added the sysop notification,
- the /M at the xfer prompt, and the . from WFC. The reason I
- added the sysop notification is that I had a user that was
- randomly sending flames out across the net. Didn't matter who,
- didn't matter where, but was usually 1@xxxx (Caught him before
- he did a 1@1, but nevertheless...) this way, the SSM he/she
- sends is also sent to you, with a note about who sent it and
- to whom it was sent. As I said, the bulk of the mod belongs
- to Papa Bear, I just changed a couple things and added a few..
-
-
- Revision A: Welp, I left in a modstring(xxx) (duh!), and for some reason
- it wasn't sending who the SSM was from. Both are fixed, it
- send the senders acct# locally AND across the net.
- Thanx to Pascha (1@4958) for pointing this out to me!
- Also, when it DID send out who the SSM was from, if the SSM
- was long, the from address got trunc'd. So, it sends two
- lines, the first is the SSM, the second says from who.
-
-
- Revision B: I had some complaints about the format. So instead of :
-
- Hey You!
- The preceding SSM was from ─═─ 1@3759
-
- so it is NOW :
-
- The following SSM is from ─═─ 1@3759
- Hey You!
-
- I had a couple people email that they tried to change it
- themselves and had problems. So I did it for them. This
- is the ONLY change in the mod! Just follow the Upgrading
- note.
-
- Revision C: Welp, Once again had my head up my butt. It wasn't reading
- the system's net address right at times. Fixed and all is
- better now. 8^]
-
-
- Upgrading.... To upgrade, just replace your void send_ssm(void) with the
- one below. That's it!
-
- Disclaimer. You did it, not me. Works here.
- (Standard disclaimer 101.334.ef3)
-
-
- Da Mod.
-
-
- Back 'er up!
-
- ┌──────────────┐
- │ = - existing │
- │ - - delete │
- │ + - add │
- └──────────────┘
-
- Open up BBS.C
-
- in void mainmenu(void).... do the following....
-
- = if (strcmp(s,"/E")==0)
- = slash_e();
- + if (strcmp(s,"/M")==0)
- + send_ssm();
- = if (strcmp(s,"/N")==0)
-
-
- in void dlmainmenu(void)... do the following...
-
- + if (strcmp(s,"/M")==0)
- + send_ssm();
- = if (strcmp(s,"/O")==0) {
- = if (thisuser.logons==1) {
-
-
- if void getcaller(void)... do the following...
-
- = case 'Z':
- = if (ok_local()) {
- = zlog();
- = nl();
- = getkey();
- = }
- = break;
- + case '.': // This will have to be changed
- + if (ok_local()) { // in v4.23... but that's later
- + send_ssm(); // 8)
- + }
- + break;
- = case '/':
- = if ((net_sysnum) && (ok_local()))
-
- Save BBS.C
-
-
- Open up MISCCMD.C and block read this at the end...
-
- If upgrading, you only need to replace the following void, nothing else
- has changed.
-
- /****************************************************************************/
-
- void send_ssm(void)
- {
- char s1[81],s2[81],s3[81],s4[81],*ss;
- int i;
- unsigned short un,sy;
-
- nl();
- outstr("Send a short message to another user ? ");
- if (yn()) {
- pl("Enter user name or number (local), or number and node (net)");
- pl("Examples : For Local - 1 or Unca Scrooge");
- pl(" For Net - 1367@1");
- npr("[> ");
- mpl(20);
- input(s1,20);
- pl("Seeing if this is a Net message...");
- delay(500);
- parse_email_info(s1,&un,&sy);
- if (!sy) {
- pl("Seeing if this is a Local message...");
- delay(500);
- nl();
- un=finduser1(s1);
- }
- if ((!un && !sy) || !un) {
- pl("Sorry, can't find that user.");
- return;
- } else {
- pl("Enter a short message ");
- prt(7,": ");
- mpl(70);
- inli(s1,"",70,1);
- if (un && sy) {
- if (thisuser.restrict & restrict_net) {
- nl();
- pl("You can't send SSM's off DreamNET!"); //Your BBS here
- return;
- } else {
- sprintf(s3,"The following SSM is from ─═─ %u@%u
- ",usernum,net_sysnum);
- ssm(un,sy,s3);
- ssm(un,sy,s1);
- sprintf(s4,"%s sent the following SSM to account # %u@%u",
- thisuser.name, un , sy);
- ssm(1,0,s4);
- ssm(1,0,s1);
- nl();
- pl("Your message has been sent over the Net");
- nl();
- }
- } else {
- sprintf(s3,"The following SSM is from ─═─ %u@%u ",usernum,net_sysnum);
- ssm(un,0,s3);
- ssm(un,0,s1);
- sprintf(s4,"%s sent the following SSM to account # %u", thisuser.name,
- un);
- ssm(1,0,s4);
- ssm(1,0,s1);
- nl();
- pl("Your message has been sent locally");
- nl();
- }
- }
- }
- }
-
- /****************************************************************************/
-
-
- Make FCNS... or add void send_ssm(void) to FCNS.H ad the end of the misccmd.c
- listing. (Make FCNS is MUCHO easier!)
-
-
- Compile.... (externalize the strings... I do) :)
-
-
- Lemme know.... better yet, send me an SSM :)
-
-
-
-
-
-
- Read:(1-50,^37),? :
-
- 38/50: RIPMODV3 Release Information
- [ Name ] ``Midiman`` WWIVnet #1 AT 850
- [ Date ] Wed Nov 03 11:15:09 1993
- [ From ] WWiVLink - The Land of OZ (Mo) [314-921-5195]
-
- <*> <*> <*> <*> <*> <*> <*> <*> <*> <*> <*> <*> <*> <*> <*> <*> <*> <*>
- RIPMOD V3 (11/05/93)
- By MidiMan
- <*> <*> <*> <*> <*> <*> <*> <*> <*> <*> <*> <*> <*> <*> <*> <*> <*> <*>
-
- RIPMODV3 Is finally here, for some of you that have been waiting! WWIV
- RIPMOD is as good as (better) those found on Major BBS/SL/Wildcat/PCBOARD. As
- you will see my features out do theirs greatly!
-
- Make your BBS a graphical user interface, with the ease of clicking on
- buttons with his/her own mouse activating pop-up menus/screens! Make your
- BBS look even more Professional!
-
- << FEATURES OF RIPMODV3 >>
-
- (00) 100 % Error free, all known bugs previously fixed. Over 6
- Beta test sites online now. (In Japan)
- (01) Instant Rip Detection
- (02) Icon check (checks users icons to make sure they have yours,
- checks date on icons to make sure you haven't updated them.
- This is invoked after loging on, and user is requested to
- download them instantly, It also seperates them and puts them
- into the users icon subdirectory automatically- WHEW!)
- (03) Email Read window (read your email in a nice looking box with
- push button options: REPLY,DELETE,SAVE,QUIT,ETC)
- (04) Message Base Window (read messages in a nice looking box with
- push button options: EMAIL,REPLY,NEXT,PREVIOUS,GOTO,QUIT)
- (05) Pop up box questions/info throughout bbs (for example: Read your
- Mail, logoff, time, are you sure, y/n 's etc...)
- (06) Picklists subs (select a sub by scrolling a menu bar over sub name
- or picking it from mouse) * currently works for 4.22 *
- (07) Picklist Gfiles (Nice looking popup menu choices that pop up
- and you choose by mouse or cursur keys!)
- (08) All menus are now rip capable
- (09) You now can define RIP subs, so only rip users can read the rip
- messages.
- (10) You can also define Gfiles & Message Subs so that RIP users only
- see RIP GFILES/MESSAGES! (EXCELLENT FOR PICTURE DATABASES)
- (11) Over 30 rip screens needed to replace text strings. Could not use
- external strings for RIP, since I use more than one line for each
- string.
- Here are some sceens included:
-
- ENTERID.RIP BADID.RIP ENTERPW.RIP BADPW.RIP
- YOURMAIL.RIP EMAIL.RIP READ.RIP LASTCALL.RIP
- WINDOW.RIP NEWINDOW.RIP MENUS.RIP WELCOME.RIP
- SYSTEM.RIP LOGON.RIP LOGOFF.RIP CHAT.RIP
- CHAINS.RIP DOWNLD.RIP UPLOAD.RIP SENDMAIL.RIP
- WRITE.RIP ICONS.RIP MENUS.RIP HELP.RIP
-
- (12) RIP Commands (RIPBIG,RIPPASTE,RIPPAUSE,RIPBLIP,RIPMUSIC,RIPCUT)
- (13) RIP window for line editor and Fullscreen editor that has buttons
- on the bottum of the that let you click on SAVE, ABORT, TITLE,
- Clear message while typing in a message (makes it look like a RIP
- Message editor!)
- (14) Easy to install RIP CODE (real easy).
- (15) Optional message MOD to seperate your Main & Message commands
- so that you dont have 40 icons on menu0
-
- It doesn't get much better then this! I have spent many hours of
- Programming/Debugging WWIV RIP. This RIP MOD is huge! It must contain
- the .RIP files I have created to replace external text strings. Which
- I can't send over the network under no circumstances (I'm overseas) and its
- to big! However, I am requiring a WWIV RIPMODV small registration fee
- of $20 (The price of going to the movies these days) which you get:
-
- 1) ONE 3.5" DISK
- 2) RIPMODV3
- 3) DOCS
- 4) OVER 30 RIP FILES/SCREENS (REQUIRED)
- 5) ADDITIONAL 30 RIP PICTURES, MAYBE A RIP EDITOR PROGRAM (not sure yet)
- 6) ADDED TO A MAILING LIST FOR FREE UPDATES & 4.23 SUPPORT
- 7) FREE SHIPPING
-
- Personal Checks/Money Orders only
- Scott Kraemer
- PSC 558
- P.O. BOX 3626
- FPO/AP 96375-3625
-
- Please EMAIL me so I can get a head start on your order!
- 1@850 WWIVnet
-
-
-
- Read:(1-50,^38),? :
-
- 39/50: FILE_ID.DIZ mods
- [ Name ] Shadowspawn #1 @13900
- [ Date ] Sat Nov 06 15:00:18 1993
- [ From ] %WWiVLink - Adventurer's Corner [ASV] (OS/2) (Ill) [309-452-2838]
-
- RE: Does..
- BY: Twisted Image #160 @18411
-
- »anyone have a FILE_ID.DIZ mod?
-
- If you can wait a bit longer, that will be included in WWIV v4.23.
-
- --ShadowSpawn
- @13900 WWIVLink
- @3900 WWIVnet/IceNet
- -----
- Internet address: kuntzelm@rs6000.cmp.ilstu.edu
-
-
-
- Read:(1-50,^39),? :
-
- 40/50: Quick Fix
- [ Name ] ``Spotnick`` WWIVnet #1 AT 5497
- [ Date ] Fri Nov 05 04:33:02 1993
- [ From ] WWiVLink - The Land of OZ (Mo) [314-921-5195]
-
- RE: » SM03.MOD - Spruce up net email menu with # of hops..
- BY: The Sandman #1 @8307 ■Cool SysOp■
-
- Quick Fix For Your Mod
-
- Number of Hops=%u
-
- not %d
-
- Spφtnick
-
-
-
-
- Read:(1-50,^40),? :
-
- 41/50: IMPORTANT MOD CORRECTION TO CEJ-04.MOD!!!
- [ Name ] ``Captain Ej`` WWIVnet #1 AT 5057
- [ Date ] Wed Nov 03 18:18:19 1993
- [ From ] WWiVLink - The Land of OZ (Mo) [314-921-5195]
-
- I have found the answer to the problem plagueing my mod for so long.... if you
- have tried to use this mod, but could not get it to work, try this one now!!!
-
- NOTE: If you were using CEJ-04 thru CEJ-04E and were having trouble, then
- you need this version, because it fixes the memory problems of earlier
- versions. I am not sure what was causing this problem, but many of you were
- having it, so I did some experimenting and found out that if I rename the
- variables in the address_rec from thisXXXX to this_XXXX then it works, maybe
- there was a memory clash between the variable thisuser in the BBS... not sure,
- but if you still have problems with it, let me know. But all you need to do
- is change all the occurances of thisxxxx to this_xxxx for address_rec (and
- address_rec only). OR you can just install this one brand new.
-
- ┌──────────────────────────────────────────────────────────────────────┐
- │ Mod Name: CEJ-04F.MOD Author: Captain EJ 1@5057 │
- │ Difficulty: █▒▒▒▒▒▒ WWIVnet │
- │ Modified: BBS.C, MULTMAIL.C Date: 3
-
-
- Read:(1-50,^41),? :
-
- 42/50: DEVIL04.MOD -=- Asks User to change password every 30 logons
- [ Name ] Hell Razor #1 @27466 ¡ There can be only one... ¡
- [ Date ] Tuesday, November 9, 1993 5:49 am
- [ From ] WWiVLink - The Pit's Of Hell [GSA/ASV] (S. Ca) [714-963-9784]
-
- ┼══───════───══┼
- │Message Status├─■ No Reply Wanted.
- ┼══───════───══┼
- [ Beginning of Message! BoM Beginning of Message! ]
-
- ┌────────────────────────────────────────────────────────────────────────────┐
- │ Mod Name: DEVIL04.MOD Mod Author(s): Hell RaZoR WWiVLink 1@27466 │
- │ Difficulty: Not even a 0 WWiVNET 1@7466 │
- │ WWIV Version: WWIV v4.22+ Date: 11/07/93 IceNET 1@7466 │
- │ Files Affected: LILO.C HellNET 1@1 │
- │ Description: Asks the User to change password every 30 logons. │
- │ Tested on an Sexually Active Source │
- └────────────────────────────────────────────────────────────────────────────┘
-
-
-
- Disclaimer If when you install this mod, your cat becomes pregnant and
- has puppies, that is NOT my fault. If your girlfriend calls
- you out of nowhere and dumps you, well, that MIGHT be my fault. :)
-
- Key + Add this Line
- = Line already there, search for me
- - DELETE ME!
- * Change
- ^P Change Color
- $ Send me money
- S Scratch your crotch
- PB&J Make yourself some food <Peanut Butter & Jelly Sandwich>
-
- STEP 1
-
- Please backup your source code.
- make a batch file called SAVE.BAT and put this in it..
-
- [ Hit A Key ] PKZIP -EX %1-93.ZIP *.C *.H *.MAK *.ASM
-
- then at the DOS prompt.. type the month, and date.. IE (SAVE 06-24)
- and it will make a 06-24-93.ZIP of your source code.. neat-o, eh?
-
- STEP 2
-
- Open LILO.C and search for this...
-
-
- = readmail();
- = }
- = }
- = nscandate=thisuser.daten;
- = batchtime=0.0;
- = numbatchdl=numbatch=0;
- + if ((thisuser.logons % 30)==0) {
- + pl("^P^C1After every 30 logons, it would be nice");
- + pl("^P^C1to change your password so other users");
- + pl("^P^C1will not hack your account.");
- + nl();
- + pausescr();
- + input_pw1();
- + nl();
- + }
-
- STEP 3
-
- Save LILO.C and Compile...
-
- STEP 4
-
- Please send me a piece of mail saying that you used my mod so I don't feel
- that I'm wasting my time releasing my mods..
- Then, send me an Email describing your first <Fill in the Blank>
- or send me a death threat... those are
-
-
- Read:(1-50,^42),? :
-
- 43/50: » SM02.MOD - [ASV] Network Only (REVISED & COMPLETE!)
- [ Name ] ``The Sandman`` WWIVnet #1 AT 8307
- [ Date ] Saturday, November 6, 1993 8:
-
-
-
- Read:(1-50,^43),? :
-
- 44/50: TB20-422.MOD - Reorder Chains from //CHAINEDIT
- [ Name ] ``The Bishop`` WWIVnet #1 AT 7
- [ Date ] Sat Nov 06, 1993 11:44p (PCT)
- [ From ] WWiVLink - The Land of OZ (Mo) [314-921-5195]
-
- ╔═══════════════════════════════════════════════════════════════════════════╗
- ║ WWIV Desc : Re-Order Chains in //CHAINEDIT ║
- ║ ║
- ║ Filename : TB20-422.ZIP Mod Version : 1.0ß ║
- ║ Author : τhe ßishop 1st File Modified : CHNEDIT.C ║
- ║ 1st Net : 1@ 7.WW
-
-
- Read:(1-50,^44),? :
-
- 45/50: DEVIL04.MOD -=- Asks User to change password every 30 logons
- [ Name ] ``Hell Razor`` WWIVnet #1 AT 7466
- [ Date ] Tuesday, November 9, 1993 5:51 am
- [ From ] WWiVLink - The Land of OZ (Mo) [314-921-5195]
-
- ┼══───════───══┼
- │Message Status├─■ No Reply Wanted.
- ┼══───════───══┼
- [════════─────────∙∙∙·· · · [BoM] ]
-
-
-
-
- Read:(1-50,^45),? :
-
-
-
- Read:(1-50,^46),? :
-
- 47/50: Zth DiMENSiON #1 -- List unvalidated users (BELTAIR2 update)
- [ Name ] ``Zz`` WWIVnet #1 AT 8365
- [ Date ] Wed Nov 10 14:20:33 1993
- [ From ] WWiVLink - The Land of OZ (Mo) [314-921-5195]
-
- ┌─────────────────────────────────────────────────────────────────────────────┐
- │Mod Name ─═] Unvalidated User List (Z-D01.MOD) │
- │Author ─═] Zth DiMENSiON (Zz 1@8365 WWIVNET) │
- │Difficulty ─═] ██░░░░░░░░░ [2/10] (A block copy and a couple small additions)│
- │Date ─═] 11/10/93 │
- │Mod Ver. ─═] 1.0 │
- │WWIV Ver. ─═] 4.2X I'm not sure which ones, tested on 4.22. │
- │Affected ─═] MISCCMD.C, BBS.C, and COM.C (optional) │
- │Discription─═] List Unvalidated Users. │
- └─────────────────────────────────────────────────────────────────────────────┘
-
- ────[Extended Description]─────────────────────────────────────────────────────
- This mod lets you get a list of unvalidated users at //UNVALUSERS and before
- you validate a user after the ! command. BELTAIR2.MOD is where this came
- from, he did it first, this just makes it look nicer and adds a couple of
- features here are the differences:
-
- ■ Lists all user with the newuser sl so you don't have to customize the
- highest SL they have to have to be listed yourself.
- ■ Lists unvalidated users at the ! command as well as at //UNVALUSERS.
- ■ Makes it look a lot more nicer and colorful.
- ■ Updates the fuctions and such for 4.2X, it was originally made for 4.12
- and had fuctions such as print.
-
- ────[Information]──────────────────────────────────────────────────────────────
- Zth DiMENSiON is a programming, sound, and graphics group, we have started
- out doing WWIV Support programs. We are accepting members if you you wish
- to join email me through WWIVnet. So far, we have this mod, and have a WWIV
- program out called Z-Stat which shows the user stats available through
- CHAIN.TXT, we are also working on Z-Calc, a calculator and some WWIV mods.
- Well, on with the mod! Please, let me know if you are using the mod so I can
- send you any updates.
-
- ────[Key]──────────────────────────────────────────────────────────────────────
- /*++*/ Add /*==*/ Existing /*O+*/ Optional Add
- /*--*/ Delete /*SS*/ Search For /*O-*/ Optional Delete
-
- ────[Step One]─────────────────────────────────────────────────────────────────
- Open MISCCMD.C and add the block copies.
-
- /*++ Start Block Copy Here ++*/
- void unval_usrlst(void)
- {
- userrec u;
- int i,nu,abort,ok,num;
- char st[81];
-
- abort=0;
- num=0;
- ansic(4); /*Change this to whatever*/
- pl("Unvalidated Users"); /* COMMENT 1 */
- ansic(0);
- line(20,7); /* COMMENT 2 */
- for (i=0; (i<status.users) && (!abort) && (!hangup); i++) {
- read_user(smallist[i].number,&u);
- ok=1;
- if (u.sl>syscfg.newusersl)
- ok=0;
- if (ok) {
- pla(nam(&u,smallist[i].number),&abort);
- ++num;
- }
- }
- if (!abort) {
- itoa(num,st,10);
- nl();
- npr("%s users.",st);
- nl();
- }
- }
-
- Close MISCCMD.C.
- ────[Step Two]─[OPTIONAL STEP]─────────────────────────────────────────────────
- Open COM.C and add this.
-
-
- /*++ End Block Copy Here ++*/
-
- /*S+ Optional Block Copy Starts Here S+*/ /*COMMENT 1*/
-
- void line(int i, int c)
- {
- int y;
-
- ansic(c);
- while (y<i) {
- if (okansi())
- outstr("─");
- else
- outstr("-");
- }
- nl();
- ansic(0);
- }
-
- /*S+ Optional Block Copy Ends Here S+*/
-
- Close COM.C.
- ────[Step Three]───────────────────────────────────────────────────────────────
- Open BBS.C.
-
-
- /*SS*/ case '!':
- /*==*/ helpl=14;
- /*==*/ if (!cs())
- /*==*/ return;
- /*==*/ nl();
- /*++*/ unval_usrlst();
- /*==*/ nl();
- /*==*/ pl(get_string(15));
- /*==*/ outstr(":");
- /*==*/ input(s1,30);
- /*==*/ i=finduser1(s1);
- /*==*/ if (i>0) {
- /*==*/ sysoplog(get_stringx(1,13));
- /*==*/ valuser(i);
- /*==*/ } else
- /*==*/ pl(get_string(8));
- /*==*/ break;
-
- ────[Step Four]────────────────────────────────────────────────────────────────
-
- /*SS*/ if (strcmp(s,"VOTEPRINT")==0) {
- /*==*/ voteprint();
- /*==*/ }
- /*++*/ if (strcmp(s,"UNVALUSERS")==0) {
- /*++*/ unval_usrlst();
- /*++*/ }
-
- Close BBS.C.
- ────[End Of Mod]───────────────────────────────────────────────────────────────
-
- COMMENT 1: If you wish to use strings, just add the string to ENGLISH.STR
- then change the string with the comment next to it to
- pl(get_string(XXXX)) and XXXX equals the line number you added
- the string to in ENGLISH.STR.
- COMMENT 2: I use my line routine to make lines, if you do not wish to use
- the line routine, delete all the optional steps in this mod
- and change line(20,7) to :
- if (okansi())
- pl("────────────────────");
- else
- pl("--------------------");
- If you do want to use the line routine, then the first number is
- the numbers of characters in the line, and the second number is
- the color of the line.
-
- ────[Disclaimer]───────────────────────────────────────────────────────────────
-
- How could a simple little mod like this do anything to your BBS or Computer?
- So if anything happens don't think about blaming it on me.
-
-
-
- Read:(1-50,^47),? :
-
- 48/50: MOD REQUEST.
- [ Name ] Marek #2 @12582
- [ Date ] Tue Nov 16 22:33:11 1993
- [ From ] WWiVLink - Death's Door (Penn) [215-256-4788]
-
- [Could you all please post all of your mods dealing with the default]
- [editor? I want to build upon what it now does, and I need other ]
- [people's mods so that I can do the modifications to my editor. If ]
- [you do post mods for the editor, thank you in advance. ]
-
- Marek
-
- p.s. That message was not done by a modded editor... I made the message look
- like it did to grab your attention. If you are reading this post-script, it
- looks like it worked!
-
- -----
- This tagline actually uses nine words and sixty-four characters.
-
- ═╦══╗╔══╔═╗╒═╦═╕╥ ╥ ╗╔══ ═╦══╗╔═╗╔═╗╔══╗ (215)256-4788 = Call Us Now!
- ║ ║╠══╠═╣ ║ ╠═╣ ╚═╗ ║ ║║ ║║ ║╠═╦╝ Tons of Great Message Bases!
- ═╩══╝╚══╙ ╜ ╨ ╨ ╨ ══╝ ═╩══╝╚═╝╚═╝╩ ╚═ Onliners-TW, BRE, SRE +More!
-
-
-
-
-
- Read:(1-50,^48),? :
-
- 49/50: DOC014 - Automatically Turn On Capture When You Enter Chat
- [ Name ] ``The Doctor`` WWIVnet #1 AT 7750
- [ Date ] Tuesday, November 16, 1993 02:51 PM [EST]
- [ From ] WWiVLink - The Land of OZ (Mo) [314-921-5195]
-
- Reply Status: Reply If You Use This Mod
-
-
- ┌───────────────────────────────────────────────────────────────────────────┐
- │Mod Name: DOC014.MOD Author: The Doctor 1@7750 (WWIVNet) │
- │ 1@17750 (WWIVLink) │
- │Difficulty: ██░░░░░░░░ Date: 11/16/93 │
- │WWIV Version: WWIV 4.22 (May Work On Other Versions) │
- │Files affected: CONIO.C │
- │Description: Makes WWIV Automatically Capture CTRL-F10 Chat Sessions. │
- │ │
- └───────────────────────────────────────────────────────────────────────────┘
-
- Description:
- ------------------------------------------------------------------
- This mod turns the global capture feature triggered by the SHIFT-F1 key
- combination during the CTRL-F10 Chat Mode
-
-
- Read:(1-50,^49),? :
-
- 50/50: DOC014 - Automatically Turn On Capture When You Chat
- [ Name ] The Doctor #1 @17750
- [ Date ] Tuesday, November 16, 1993 02:52 PM [EST]
- [ From ] ^WWiVLink - The Doctor's Office BBS [ASV/GSA] (Penn) [717-823-0027]
-
- Reply Status: Reply If You Use This Mod
-
-
- ┌───────────────────────────────────────────────────────────────────────────┐
- │Mod Name: DOC014.MOD Author: The Doctor 1@7750 (WWIVNet) │
- │ 1@17750 (WWIVLink) │
- │Difficulty: ██░░░░░░░░ Date: 11/16/93 │
- │WWIV Version: WWIV 4.22 (May Work On Other Versions) │
- │Files affected: CONIO.C │
- │Description: Makes WWIV Automatically Capture CTRL-F10 Chat Sessions. │
- │ │
- └───────────────────────────────────────────────────────────────────────────┘
-
- Description:
- ------------------------------------------------------------------
- This mod turns the global capture feature triggered by the SHIFT-F1 key
- combination during the CTRL-F10 Chat Mode (non-2way chat). I saw this
- feature on my Renegade Sub System and felt it would be useful in WWIV.
- Hence this m
-
-
- Read:(1-50,^50),? :